Welcome![Sign In][Sign Up]
Location:
Search - MDI application

Search list

[Othertreestore

Description: Tree views are capable of storing hierarchical data, which isn t intuitively serialized. The TreeStore sample is an MDI application which shows a view based on CTreeView and demonstrates loading and saving the content of the control with MFC s CArchive-based serialization. The code is also rife with calls to the item navagation routines of CTreeCtrl, including GetNextSiblingItem(), GetPrevSiblingItem(), and GetParentItem().
Platform: | Size: 41984 | Author: 陈伟 | Hits:

[GUI Developwtlmditab_demo

Description: This class adds a simple tab control in a WTL based MDI application. It is partly based on the freeware MFC version from Dundas Software available at
Platform: | Size: 52224 | Author: 王豫 | Hits:

[Books深入了解MFC文档视结构

Description: 帮助VC的初学者了解向导生成程序的整体结构 Visual C++ 以其功能强大、用户界面友好而倍受程序员们的青睐。但是,在当前的Microsoft 基本类库4.2 版本中,大约有将近200 个类,数千个函数,加之Microsoft 公司隐藏了一些技术细节,使得人们深入学习MFC变得十分困难。 MFC的AppWizard可以生成三种类型的应用程序:基于对话框的应用、单文档应用(SDI)和多文档应用(MDI)。前两者的结构较简单,本文不再赘叙。笔者拟从MFC中的文档/视结构入手,分析一些函数的流程,并解决编制MDI 应用程序过程中的一些常见问题。 -help beginners understand the wizard generates the overall structure of procedures Visual C with the powerful, user-friendly and highly favored by programmers. However, at present the basic class library of the Microsoft version 4.2, some nearly 200 categories, thousands of functions, coupled with Microsoft Corp. hidden some of the technical details, enabling in-depth study MFC very difficult. MFC+5.0 generate three types of applications : Based on the dialog applications, single-file application (SDI) and multi-document applications (MDI). The first two are relatively simple structure, this paper will not dwell on. The author intended from the documents MFC/depending on the structure, the analysis of functions and processes, and to address MDI application preparation process of some co
Platform: | Size: 22528 | Author: 王国维 | Hits:

[Windows Developfatherwindow

Description: 如果你用 MFC 编写过多文档界面(MDI)Windows 程序,那么肯定知道:如果父窗口标题为“PCaption”,子窗口标题为“CCaption”,那么每当子窗口最大化并处于激活状态时,子窗口标题一般都会与父窗口标题合二为一,变成“PCaption-[CCaption]”。 这是一种 MDI 的默认行为。用 C# 编写多文档界面程序也不例外。很多用户都不喜欢这种缺省特性,往往想用定制的窗口标题取而代之。该例子示范如何在C#程序中定制和修改MDI应用的窗口标题。-If you use MFC prepared excessive document interface (MDI) Windows procedures, Well know for sure : If the father window entitled "PCaption" Subwindow entitled "CCaption," then maximize the window whenever son was in a state of activation, Subwindow heading generally patriarchal heading into one window, become "PCaption-[CCaption]." This is a MDI default behavior. C# prepared multi-document interface procedures are no exception. Many users do not like this default characteristics are often customized to use the title of the window replaced. The examples demonstrate how C# procedures customization and modification of MDI application's window title.
Platform: | Size: 71680 | Author: | Hits:

[Windows Developtestfreepool_demo

Description: 本文提出了一组可以用来动态创建UI的类。该代码是集中于一个空闲池使用管理器的CWnd继承控件,该管理器可以帮助我们减少在特定UI场景中GDI资源的使用。为了在运行中演示这些类,我已经在此提供了一个MDI应用示例,它只是让你来打开XML文件。每个XML文件为单个MDI子窗体定义了布局和UI控件属性。尽管代码是用VC6写的,示例项目也可以被转换为VS 2003 和VS 2005项目。 -This paper presents a group can be used to create dynamic UI class. The code is focused on the use of a leisure pool of management succession CWnd Controls The manager can help us reduce the specific UI scene GDI resource use. In order to demonstrate the operation of this type, I have here provided a sample MDI application, it is just to let you open an XML file. XML documents for each MDI child windows single definition of the layout and UI control attributes. Although the code is written using VC6, examples of projects can be converted to VS 2003 and VS 2005 project.
Platform: | Size: 97280 | Author: gongshenglai | Hits:

[Dialog_Windowtestfreepool

Description: 本文提出了一组可以用来动态创建UI的类。该代码是集中于一个空闲池使用管理器的CWnd继承控件,该管理器可以帮助我们减少在特定UI场景中GDI资源的使用。为了在运行中演示这些类,我已经在此提供了一个MDI应用示例,它只是让你来打开XML文件。每个XML文件为单个MDI子窗体定义了布局和UI控件属性。-This paper presents a group can be used to create dynamic UI class. The code is focused on the use of a leisure pool of management succession CWnd Controls The manager can help us reduce the specific UI scene GDI resource use. In order to demonstrate the operation of this type, I have here provided a sample MDI application, it is just to let you open an XML file. XML documents for each MDI child windows single definition of the layout and UI control attributes.
Platform: | Size: 97280 | Author: fish6 | Hits:

[VC/MFCc

Description: This function returns NULL when called for an MDI main frame window (CMDIFrameWnd). In an MDI application, the MDI main frame window does not have a view associated with it. Instead, each individual child window (CMDIChildWnd) has one or more associated views. The active view in an MDI application can be obtained by first finding the active MDI child window and then finding the active view for that child window.-This function returns NULL when called for an MDI main frame window (CMDIFrameWnd). In an MDI application, the MDI main frame window does not have a view associated with it. Instead, each individual child window (CMDIChildWnd) has one or more associated views . The active view in an MDI application can be obtained by first finding the active MDI child window and then finding the active view for that child window.
Platform: | Size: 96256 | Author: songlunfs | Hits:

[Dialog_WindowMDI_background_test

Description: 如何实现MDI主应用程序的窗体背景呢,答案是采用超级武器---子类化,这样主程序的背景处理部分就由我们自己的类来处理了!具体实现代码如下!从CWnd派生一个类CBGColorWnd,然后分别处理WM_ERASEBKGND和WM_SIZE即可-How to achieve the MDI application
Platform: | Size: 1080320 | Author: 黄华 | Hits:

[Picture Viewerfdfdsfdsfs

Description: 该代码是集中于一个空闲池使用管理器的CWnd继承控件,该管理器可以帮助我们减少在特定UI场景中GDI资源的使用。为了在运行中演示这些类,我已经在此提供了一个MDI应用示例,它只是让你来打开XML文件。每个XML文件为单个MDI子窗体定义了布局和UI控件属性。尽管代码是用VC6写的,示例项目也可以被转换为VS 2003 和VS 2005项目。-The code is focused on the use of a leisure pool manager of CWnd inherited control, the manager can help us to reduce the UI in a particular scene the use of GDI resources. Demonstrated in order to run these classes, I have provided in this example of a MDI application, it just allows you to open the XML file. XML file for each individual sub-MDI form defines the layout and UI control attributes. Although the code is written in VC6, sample projects can also be converted to VS 2003 and VS 2005 project.
Platform: | Size: 92160 | Author: wdss | Hits:

[.netMDITabBrowsing_src

Description: 使用C#创建MDI多标签页界面应用程序的源代码,基于.Net Framework 2.0.-The use of C# Create multi-tab interface MDI application
Platform: | Size: 10240 | Author: lujun | Hits:

[Dialog_Windowmdi

Description: MDI应用程序操作方法如下: 1.编译程序。 2.打开2.2_MDIdebugMysdi.exe程序。 3.进入应用程序主体,单击新建按钮,观察结果,可见新建后出现多个文档。-MDI application methods of operation as follows: 1. Compiler. 2. 2.2_MDIdebugMysdi.exe open procedures. 3. To enter the main applications, click the New button, and observe the results, shows that after a number of new documents.
Platform: | Size: 2333696 | Author: | Hits:

[Windows DevelopTestApp

Description: Simple MFC MDI application, just to test the upload function.
Platform: | Size: 34816 | Author: Gaetan | Hits:

[xml-soap-webserviceSudokuInCSharp_demo

Description: This paper presents a group can be used to create dynamic UI class. The code is focused on the use of a leisure pool of management succession CWnd Controls The manager can help us reduce the specific UI scene GDI resource use. In order to demonstrate the operation of this type, I have here provided a sample MDI application, it is just to let you open an XML file. XML documents for each MDI child windows single definition of
Platform: | Size: 29696 | Author: tam_tran59 | Hits:

[xml-soap-webservicepool_v21

Description: This paper presents a group can be used to create dynamic UI class. The code is focused on the use of a leisure pool of management succession CWnd Controls The manager can help us reduce the specific UI scene GDI resource use. In order to demonstrate the operation of this type, I have here provided a sample MDI application, it is just to let you open an XML file. XML documents for each MDI child windows single definition of
Platform: | Size: 65536 | Author: tam_tran59 | Hits:

[xml-soap-webservicecolorpicker

Description: This paper presents a group can be used to create dynamic UI class. The code is focused on the use of a leisure pool of management succession CWnd Controls The manager can help us reduce the specific UI scene GDI resource use. In order to demonstrate the operation of this type, I have here provided a sample MDI application, it is just to let you open an XML file. XML documents for each MDI child windows single definition of
Platform: | Size: 89088 | Author: tam_tran59 | Hits:

[xml-soap-webservicemouse

Description: This paper presents a group can be used to create dynamic UI class. The code is focused on the use of a leisure pool of management succession CWnd Controls The manager can help us reduce the specific UI scene GDI resource use. In order to demonstrate the operation of this type, I have here provided a sample MDI application, it is just to let you open an XML file. XML documents for each MDI child windows single definition of
Platform: | Size: 4096 | Author: tam_tran59 | Hits:

[CSharpCsMdiAfx

Description: MDI应用程序框架(含菜单合并,最近文件列表,子窗体排列,配置文件读写)-MDI Application Framework (including the combined menu, a list of recent documents, sub-arranged form, read and write configuration files)
Platform: | Size: 153600 | Author: xycheng | Hits:

[OpenGL programoglmdi2

Description: have included this Multiple Document Interface example here because any game development requires a good editor for constructing the world or models. The editor should provide multiple views of the scene and therefore the most intuitive method is to use multiple windows that allow perspective and orthographic views. In my search of the internet I was unable to find any example code that showed how to program an OpenGL Multiple Document Interface application using just straight Win32 programming with no MFC so I decided to program it myself. This MDI example only shows the same scene in each child window but should be easily understandable and modifiable by anyone familiar with programming a standard MDI application using the Win32 API. I will follow up this example with a more complete editor example.
Platform: | Size: 424960 | Author: johnnystar | Hits:

[GUI Developmainframe

Description: 多文档MDI应用程序例子,其中有menu事件处理和toolbar例子-a sample of MDI application which includes the delegating of menu events and a sample of using toolbar
Platform: | Size: 53248 | Author: jianwei yang | Hits:

[Delphi/CppBuilderMDI-application

Description: 一个简单MDI应用程序,可以了解Delphi如何编写MDI程序-A simple MDI application, you can learn how to write Delphi MDI program
Platform: | Size: 13312 | Author: liu | Hits:
« 12 3 4 5 6 »

CodeBus www.codebus.net